home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SELF16._B_ < prev    next >
Text File  |  1997-05-22  |  952b  |  38 lines

  1. #
  2. # Borland makefile for SELFTEST [Win16]
  3. # Requires WSC16.LIB
  4. #
  5. # To use: "make -fself16._B_"
  6. #
  7.  
  8. CCFLAGS = -c -2
  9.  
  10. selftest.exe: selftest.res wsc16.lib selftest.obj selftest.def  \
  11.             about.obj menu.obj line.obj \
  12.             paint.obj sioerror.obj runtest.obj
  13.     tlink -c -n -Tw  c0ws @selftest.rsp ,selftest,selftest, mathws cws import wsc16,selftest,selftest
  14.     rlink selftest.res selftest.exe
  15.  
  16. selftest.res: selftest.rc
  17.     brcc selftest.rc
  18.  
  19. about.obj: about.c about.h
  20.    bcc $(CCFLAGS)  about.c
  21.  
  22. selftest.obj: selftest.c selftest.h wsc.h
  23.    bcc $(CCFLAGS)  selftest.c
  24.  
  25. runtest.obj: runtest.c runtest.h wsc.h
  26.    bcc $(CCFLAGS)  runtest.c
  27.  
  28. paint.obj: paint.c paint.h sioerror.h
  29.     bcc $(CCFLAGS)  paint.c
  30.  
  31. line.obj: line.c line.h sioerror.h
  32.     bcc $(CCFLAGS)  line.c
  33.  
  34. menu.obj: menu.c menu.h sioerror.h
  35.     bcc $(CCFLAGS)  menu.c
  36.  
  37. sioerror.obj: sioerror.c sioerror.h
  38.     bcc $(CCFLAGS)  sioerror.c